for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import { ApiProperty } from '@nestjs/swagger';
export class TokenRevocationResponseDto {
@ApiProperty()
success: boolean;
message: string;
revokedCount?: number; // Optional, if you want to include how many tokens were revoked
}